CxGrpNavBar Events

The CxGrpNavBar object contains the following event:

OnSelChangeLevel

This event is fired when a new node is selected.

Syntax

CxGrpNavBarObject_EventOnSelChangeLevel(Level As Integer)

Parameters

Parameter Required Description

Level

Yes

Indicates the level at which the selection change occurred.

Example

The following example changes the level selection in the Rules group when a new node is selected in the GrpNavBar. This example is taken from the CxGrpNavBar and CxGrpGrid Example.

Copy
OnSelChangeLevel
Sub GrpNavBar_EventOnSelChangeLevel(Level)
Dim This : Set This = GrpNavBar
 
    cboLevel.Selection = Level + 1
     
    ListfilterRules
 
End Sub